gsk: Pass font options along
authorMatthias Clasen <mclasen@redhat.com>
Fri, 3 Sep 2021 11:19:36 +0000 (07:19 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 3 Sep 2021 16:52:05 +0000 (12:52 -0400)
Use the font options from the text node when
looking up glyphs.

gsk/ngl/gsknglrenderjob.c

index 4b04310e66e72cd861d8cf90badf0a86094e980f..719b9da0dc797d2851b400c182973008b09c0714 100644 (file)
@@ -2875,9 +2875,16 @@ gsk_ngl_render_job_visit_text_node (GskNglRenderJob     *job,
 
   rgba_to_half (color, cc);
 
+  /* We have 23 bits in the key for the scale */
+  g_assert (text_scale * 1024 < (1 << 24));
+
   lookup.font = (PangoFont *)font;
   lookup.scale = (guint) (text_scale * 1024);
 
+  lookup.hint_metrics = gsk_text_node_get_hint_metrics (node);
+  lookup.antialias = gsk_text_node_get_antialias (node);
+  lookup.hint_style = gsk_text_node_get_hint_style (node);
+
   yshift = compute_phase_and_pos (y, &ypos);
 
   gsk_ngl_render_job_begin_draw (job, CHOOSE_PROGRAM (job, coloring));